Its interface does not cross the network boundary.
Instances of this class cannot be created with Instance.new.
Tags: [NotCreatable, NotReplicated]
History | | Member |
---|
553 | | ErrorMessage: string |
553 | | HasError: bool |
553 | | Id: int |
553 | | IsPaused: bool |
573 | | AddBreakpoint(script: string, line: int, breakpoint: Breakpoint): null |
573 | | Close(): null |
499 | | EvaluateWatch(expression: string, frame: StackFrame, callback: Function): int |
495 | | GetFrameById(id: int): StackFrame |
497 | | GetSource(scriptRef: string, status: Function): int |
495 | | GetThreadById(id: int): ThreadState |
495 | | GetThreads(callback: Function): int |
495 | | GetVariableById(id: int): DebuggerVariable |
494 | | Pause(thread: ThreadState, status: Function): int |
495 | | Populate(instance: Instance, callback: Function): int |
573 | | RemoveBreakpoint(breakpoint: Breakpoint): null |
494 | | Resume(thread: ThreadState, status: Function): int |
515 | | SetExceptionBreakMode(breakMode: DebuggerExceptionBreakMode, callback: Function): int |
495 | | SetVariable(variable: DebuggerVariable, value: string, callback: Function): int |
503 | | Step(thread: ThreadState, callback: Function): int |
503 | | StepIn(thread: ThreadState, callback: Function): int |
503 | | StepOut(thread: ThreadState, callback: Function): int |
573 | | UpdateSelectedFrame(threadId: int, frameNumber: int): null |
496 | | BreakpointAdded(breakpoint: Breakpoint) |
496 | | BreakpointChanged(breakpoint: Breakpoint) |
496 | | BreakpointRemoved(breakpoint: Breakpoint, reason: BreakpointRemoveReason) |
496 | | Paused(pausedState: PausedState, reason: DebuggerPauseReason) |
496 | | Resumed(pausedState: PausedState) |
inherited from Instance |
---|
553 | | Archivable: bool |
553 | | Attributes: string |
553 | | AttributesReplicate: string |
553 | | AttributesSerialize: BinaryString |
635 | | Capabilities: SecurityCapabilities |
553 | | DataCost: int |
619 | | DefinesCapabilities: bool |
553 | | HistoryId: UniqueId |
553 | | Name: string |
553 | | Parent: Instance |
553 | | PropertyStatusStudio: PropertyStatus |
553 | | RobloxLocked: bool |
635 | | Sandboxed: bool |
616 | | SourceAssetId: int64 |
553 | | Tags: BinaryString |
616 | | UniqueId: UniqueId |
553 | | archivable: bool |
553 | | numExpectedDirectChildren: int |
576 | | AddTag(tag: string): null |
573 | | ClearAllChildren(): null |
462 | | Clone(): Instance |
573 | | Destroy(): null |
486 | | FindFirstAncestor(name: string): Instance |
486 | | FindFirstAncestorOfClass(className: string): Instance |
486 | | FindFirstAncestorWhichIsA(className: string): Instance |
486 | | FindFirstChild(name: string, recursive: bool = false): Instance |
486 | | FindFirstChildOfClass(className: string): Instance |
486 | | FindFirstChildWhichIsA(className: string, recursive: bool = false): Instance |
486 | | FindFirstDescendant(name: string): Instance |
563 | | GetActor(): Actor |
486 | | GetAttribute(attribute: string): Variant |
462 | | GetAttributeChangedSignal(attribute: string): RBXScriptSignal |
631 | | GetAttributes(): Dictionary |
648 | | GetChildren(): Instances |
462 | | GetDebugId(scopeLength: int = 4): string |
486 | | GetDescendants(): Array |
486 | | GetFullName(): string |
641 | | GetStyled(name: string): Variant |
576 | | GetTags(): Array |
576 | | HasTag(tag: string): bool |
486 | | IsAncestorOf(descendant: Instance): bool |
486 | | IsDescendantOf(ancestor: Instance): bool |
580 | | IsPropertyModified(name: string): bool |
573 | | Remove(): null |
576 | | RemoveTag(tag: string): null |
580 | | ResetPropertyToDefault(name: string): null |
573 | | SetAttribute(attribute: string, value: Variant): null |
462 | | WaitForChild(childName: string, timeOut: double): Instance |
648 | | children(): Instances |
553 | | clone(): Instance |
573 | | destroy(): null |
553 | | findFirstChild(name: string, recursive: bool = false): Instance |
648 | | getChildren(): Instances |
553 | | isDescendantOf(ancestor: Instance): bool |
573 | | remove(): null |
462 | | AncestryChanged(child: Instance, parent: Instance) |
462 | | AttributeChanged(attribute: string) |
462 | | ChildAdded(child: Instance) |
462 | | ChildRemoved(child: Instance) |
462 | | DescendantAdded(descendant: Instance) |
462 | | DescendantRemoving(descendant: Instance) |
500 | | Destroying() |
553 | | childAdded(child: Instance) |
inherited from Object |
---|
647 | | ClassName: string |
647 | | className: string |
647 | | GetPropertyChangedSignal(property: string): RBXScriptSignal |
647 | | IsA(className: string): bool |
650 | | isA(className: string): bool |
647 | | Changed(property: string) |
- 573
Change ReturnType of UpdateSelectedFrame
from
void
to
null
- 573
Change ReturnType of RemoveBreakpoint
from
void
to
null
- 573
Change ReturnType of Close
from
void
to
null
- 573
Change ReturnType of AddBreakpoint
from
void
to
null
- 553
Change Default of IsPaused
from
to
- 553
Change Default of Id
from
to
- 553
Change Default of HasError
from
to
- 553
Change Default of ErrorMessage
from
to
- 549
Add UpdateSelectedFrame
- 515
Add SetExceptionBreakMode
- 503
Add StepOut
- 503
Add StepIn
- 503
Add Step
- 499
Add EvaluateWatch
- 498
Remove Terminate
- 498
Add Close
- 497
Change Parameters of GetSource
from
(scriptRef: ScriptRef, status: Function)
to
(scriptRef: string, status: Function)
- 497
Change Parameters of AddBreakpoint
from
(script: ScriptRef, line: int, breakpoint: Breakpoint)
to
(script: string, line: int, breakpoint: Breakpoint)
- 497
Add HasError
- 497
Add ErrorMessage
- 496
Change Parameters of Resumed
from
(pausedState: Instance)
to
(pausedState: PausedState)
- 496
Change Parameters of Paused
from
(pausedState: Instance, reason: DebuggerPauseReason)
to
(pausedState: PausedState, reason: DebuggerPauseReason)
- 496
Change Parameters of BreakpointRemoved
from
(breakpoint: Instance, reason: BreakpointRemoveReason)
to
(breakpoint: Breakpoint, reason: BreakpointRemoveReason)
- 496
Change Parameters of BreakpointChanged
from
(breakpoint: Instance)
to
(breakpoint: Breakpoint)
- 496
Change Parameters of BreakpointAdded
from
(breakpoint: Instance)
to
(breakpoint: Breakpoint)
- 496
Change Parameters of RemoveBreakpoint
from
(breakpoint: Instance)
to
(breakpoint: Breakpoint)
- 496
Change Parameters of GetSource
from
(scriptRef: Instance, status: Function)
to
(scriptRef: ScriptRef, status: Function)
- 496
Change Parameters of AddBreakpoint
from
(script: Instance, line: int, breakpoint: Instance)
to
(script: ScriptRef, line: int, breakpoint: Breakpoint)
- 495
Add SetVariable
- 495
Add Populate
- 495
Add GetVariableById
- 495
Add GetThreads
- 495
Add GetThreadById
- 495
Add GetFrameById
- 494
Change Parameters of Resume
from
(status: Function)
to
(thread: ThreadState, status: Function)
- 494
Change Parameters of Pause
from
(status: Function)
to
(thread: ThreadState, status: Function)
- 491
Add RemoveBreakpoint
- 491
Change ReturnType of AddBreakpoint
from
int
to
void
- 491
Change Parameters of AddBreakpoint
from
(script: Instance, line: int, conditon: Instance, status: Function)
to
(script: Instance, line: int, breakpoint: Instance)
- 488
Add GetSource
- 486
Change ThreadSafety of IsPaused
from
ReadOnly
to
ReadSafe
- 486
Change ThreadSafety of Id
from
ReadOnly
to
ReadSafe
- 485
Add Resumed
- 485
Add Paused
- 485
Add BreakpointRemoved
- 485
Add BreakpointChanged
- 485
Add BreakpointAdded
- 485
Add Terminate
- 485
Add Resume
- 485
Add Pause
- 485
Add AddBreakpoint
- 485
Add IsPaused
- 485
Add Id
- 485
Add DebuggerConnection
History 6
- 573
Change ReturnType of AddBreakpoint
from
void
to
null
- 497
Change Parameters of AddBreakpoint
from
(script: ScriptRef, line: int, breakpoint: Breakpoint)
to
(script: string, line: int, breakpoint: Breakpoint)
- 496
Change Parameters of AddBreakpoint
from
(script: Instance, line: int, breakpoint: Instance)
to
(script: ScriptRef, line: int, breakpoint: Breakpoint)
- 491
Change ReturnType of AddBreakpoint
from
int
to
void
- 491
Change Parameters of AddBreakpoint
from
(script: Instance, line: int, conditon: Instance, status: Function)
to
(script: Instance, line: int, breakpoint: Instance)
- 485
Add AddBreakpoint
Parameters (0) |
---|
No parameters. |
Returns (1) |
---|
null |
History 2
Its interface does not cross the network boundary.
Its value can be read, but it cannot be modified.
It is not meant to be used, and may have unresolved issues.
History 2
Tags: [Hidden, ReadOnly, NotReplicated]
Its interface does not cross the network boundary.
Its value can be read, but it cannot be modified.
It is not meant to be used, and may have unresolved issues.
History 2
Tags: [Hidden, ReadOnly, NotReplicated]
Its interface does not cross the network boundary.
Its value can be read, but it cannot be modified.
It is not meant to be used, and may have unresolved issues.
History 3
- 553
Change Default of Id
from
to
- 486
Change ThreadSafety of Id
from
ReadOnly
to
ReadSafe
- 485
Add Id
Tags: [Hidden, ReadOnly, NotReplicated]
Its interface does not cross the network boundary.
Its value can be read, but it cannot be modified.
It is not meant to be used, and may have unresolved issues.
History 3
Tags: [Hidden, ReadOnly, NotReplicated]
Parameters (2) |
---|
threadId | int |
Returns (1) |
---|
null |
History 2